Average Velocity problem 01.mws

1. The velocity problem.

If a ball is thrown up in the air with a velocity of 40 ft/sec, its height s in feet after t seconds is given by s = -16*t^2+40*t . Let us express this by defining a Maple command which expresses s as a function of t .

> s:=t->-16*t^2+40*t;

s := proc (t) options operator, arrow; -16*t^2+40*t...

To find the average velocity for the time period beginning at t = 2 sec, and lasting for 0.5 sec, we enter the following command.

> (s(2+.5)-s(2))/.5;

-32.00000000

Submission:

Calculate the average velocity for the time period beginning at t = 2 and lasting for

(a) 0.1 sec

(b) 0.05 sec

(c) 0.01 sec

Use these values to guess the instantaneous velocity at t = 2 sec. Will the average velocity ever actually equal the instantaneous velocity? Precisely explain the relationship between average velocity and instantaneous velocity.

Submission Worksheet:

 

2. Velocity as the slope of a tangent line.

This is a continuation of the previous activity. At t = 2 sec, the position is given by s(2) = 16 ft , so you can find an equation of the line passing through the point (2,16), with slope equal to the instantaneous velocity. (Recall that the equation of a line with slope m through the point ( t[0], s[0] ) is given by s = m*(t-t[0])+s[0] .)

Submission:

Plot this line and the graph of s on the same plot. Indicate units on the horizontal and vertical axes (look up labels in help.)  What are the units of the slope of the line you plotted? What is the relationship between the line you plotted and the graph of the position function?

Submission worksheet: